home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 2_8.lha / 2_8 / signal.h < prev    next >
Text File  |  1993-08-08  |  480b  |  24 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. * @(#) signal.h 1.6 1/20/87 09:40:05 */
  6. *ident    "@(#)cfront:incl/signal.h    1.6"*/
  7.  
  8. ifndef SIGNALH
  9. define SIGNALH
  10.  
  11. include<sys/signal.h>
  12.  
  13. ypedef void (*SIG_PF) (...);
  14.  
  15. xtern int (*sigset (int, SIG_PF))();
  16. xtern int (*ssignal(int, SIG_PF))();
  17. xtern int (*signal (int, SIG_PF))();
  18.  
  19. xtern int gsignal (int);
  20. xtern int kill (int, int);
  21.  
  22. endif
  23.  
  24.